home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 41 / Amiga Format CD41 (1999-06)(Future Publishing)(GB)[!][issue 1999-07].iso / -seriously_amiga- / graphics / ifx_antique / smakefile < prev   
Makefile  |  1999-04-19  |  509b  |  21 lines

  1. # Compiling for SAS/C 6.5x
  2.  
  3. START = LIB:c.o lib:start.o
  4. LFLG  = SC SD ND BATCH NOICONS
  5. LIBS  = lib:scan.lib+LIB:sc.lib+LIB:amiga.lib
  6.  
  7. all: Antique
  8.  
  9. Antique: antique.o Antique_ppc.elf.o
  10.    Slink $(LFLG) FROM $(START) antique.o antique_ppc.elf.o TO Antique LIB $(LIBS)
  11.  
  12. antique.o: antique.c
  13.     sc antique.c
  14.  
  15. antique_ppc.elf.o: antique_ppc.elf
  16.    genam antique_ppc.elf.s
  17.  
  18. antique_ppc.elf: antique_ppc.c
  19.    scppc antique_ppc.c
  20.    ppc-amigaos-ld -r -o Antique_ppc.elf lib:c_ppc.o antique_ppc.o lib:scppc.a lib:end.o
  21.